Skip to content

Instantly share code, notes, and snippets.

@chrmatique
chrmatique / kurtosis-tailedness.pine
Last active February 17, 2026 18:46
A simple TradingView plugin that models Kurtosis expressed as a gaussian curve.
// Kurtosis
// Computes the rolling excess kurtosis of log returns and visualises the
// resulting probability density function (Gram‑Charlier Type A expansion)
// alongside a standard Gaussian reference curve.
//@version=6
indicator("Kurtosis", overlay = false,
max_polylines_count = 100, max_labels_count = 50)
// ─────────────────────────── Inputs ───────────────────────────
@dori4n
dori4n / Office 2024 ISO Links at Microsoft.md
Created January 13, 2025 06:30
Office 2024 ISO Download Links at Microsoft
@jake-stewart
jake-stewart / color256.md
Last active February 17, 2026 18:45
Terminals should generate the 256-color palette

Terminals should generate the 256-color palette from the user's base16 theme.

If you've spent much time in the terminal, you've probably set a custom base16 theme. They work well. You define a handful of colors in one place and all your programs use them.

The drawback is that 16 colors is limiting. Complex and color-heavy programs struggle with such a small palette.

@dabit3
dabit3 / you_couldve_invented_openclaw.md
Last active February 17, 2026 18:45
You Could've Invented OpenClaw

See more of my writing here.

In this post, I'll start from scratch and build up to OpenClaw's architecture step by step, showing how you could have invented it yourself from first principles, using nothing but a messaging API, an LLM, and the desire to make AI actually useful outside the chat window.

End goal: understand how persistent AI assistants work, so you can build your own (or become an OpenClaw power user).

First, let's establish the problem

When you use ChatGPT or Claude in a browser, there are several limitations:

@nxrighthere
nxrighthere / Unreal-AgX-Tonemapper.usf
Last active February 17, 2026 18:45
AgX tonemapping for Unreal Engine 5
// See image comparison https://imgur.com/a/9L2P7GJ
// Read details https://iolite-engine.com/blog_posts/minimal_agx_implementation
// Usage:
// 1. Open "Project Settings" and change "Working Color Space" to "sRGB / Rec709"
// 2. Open `Engine\Shaders\Private\PostProcessTonemap.usf` file
// 3. Find `half3 OutDeviceColor = ColorLookupTable(FinalLinearColor);` line
// 4. Replace it with `half3 OutDeviceColor = ApplyAgX(FinalLinearColor);` line
// 5. Find `half3 ColorLookupTable( half3 LinearColor )` function
// 6. After the scope of the function, add the code below and run `RecompileShaders Changed` from console
@iam-veeramalla
iam-veeramalla / openclaw_with_ollama.md
Created February 15, 2026 11:26
openclaw with ollama (Zero cost AI Assistant)

OpenClaw configuration with Ollama

Install OpenClaw

curl -fsSL https://openclaw.ai/install.sh | bash

Install Ollama

curl -fsSL https://ollama.com/install.sh | sh

@karpathy
karpathy / microgpt.py
Last active February 17, 2026 18:44
microgpt
"""
The most atomic way to train and run inference for a GPT in pure, dependency-free Python.
This file is the complete algorithm.
Everything else is just efficiency.
@karpathy
"""
import os # os.path.exists
import math # math.log, math.exp